Console

iziBasic’s console, encapsulates 13 lines of text in which you can PRINT and INPUT some text or numbers. iziBasic will manage the vertical scrolling of these 13 lines.

CLS

Clears the console display screen

Notes:


INPUT [c|t,] c|v

Notes:


PRINT

Outputs a line feed to the console screen

PRINT c|t[;]

Outputs c|t and a line feed to the console screen unless the optional [;] argument is set

PRINT v|n1 [USING v|n2][;]

Outputs v|n1 in the v|n2 format and a line feed to the console screen unless the optional [;] argument is set

Notes for USING v|n2:


WAIT

Displays the [Enter] button and wait for this [Enter] button to be pressed


INKEY$

Reads the status of the keyboard (or a key keyed in in Graffiti) and returns a single keypress, if available

Notes:

Example: REPEAT : K$=INKEY$ : UNTIL K$<>""